home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 November / Electronic Clipper 1998-11.iso / Idea Source® / teaser.dir / 00065_Script_lock hand < prev    next >
Text File  |  1998-08-25  |  242b  |  18 lines

  1. on mousewithin me
  2.   global picklock
  3.   if picklock=0 then
  4.     cursor 280
  5.   end if
  6. end
  7.  
  8. on mouseleave me
  9.   global picklock
  10.   if picklock=0 then
  11.     cursor -1
  12.   end if
  13. end
  14.  
  15. on mousedown
  16.   puppetsound(3) "button"
  17.   cursor -1
  18. end